home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / utils / shell / xd-2.08 / xd-2 / xd / Command / write.cc < prev   
Encoding:
C/C++ Source or Header  |  1994-05-09  |  176 b   |  11 lines

  1. #include "Command.h"
  2.  
  3. int Command::write(char const *path)
  4. {
  5.     printf("%s\n", path);            // write the selected path
  6.     return (!strcmp(path, "."));        // ret. 0 for real paths
  7. }
  8.  
  9.     
  10.     
  11.